home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 3 / AGA Experience Volume 3 (1997)(NFA - SAdENESS)[!].iso / software / utilities / graphics / raylab / source / display.c < prev    next >
C/C++ Source or Header  |  1996-07-09  |  2KB  |  79 lines

  1. /*
  2.     name:    display.c
  3.  
  4.     Generic display routines (none!)
  5.     --------------------------------
  6.  
  7.  
  8.     This source-code is part of the RayLab 1.1 package, and it is provided
  9.     for your compiling pleasure.  You may use it, change it, re-compile it
  10.     etc., as long as nobody else but you receive the changes/compilations
  11.     that you have made!
  12.  
  13.     You may not use any part(s) of this source-code for your own productions
  14.     without the permission from the author of RayLab. Please read the legal
  15.     information found in the users documentation for RayLab for more details.
  16.  
  17. */
  18.  
  19.  
  20. #include  <stdio.h>
  21.  
  22. #include  "defs.h"
  23. #include  "extern.h"
  24.  
  25.  
  26. #define DISPLAY_NONE 0
  27.  
  28.  
  29. /******************************************************************
  30.  *
  31.  *  AvailableDisplayModes()
  32.  *
  33.  ******************************************************************/
  34.  
  35. void AvailableDisplayModes(void)
  36. {
  37.     fprintf(textoutput,"No display available in the generic version of RayLab\n");
  38. }
  39.  
  40.  
  41. /******************************************************************
  42.  *
  43.  *  OpenDisplay()
  44.  *
  45.  ******************************************************************/
  46.  
  47. long OpenDisplay(long DisplayType)
  48. {
  49.     if(DisplayType!=DISPLAY_NONE) {
  50.         fprintf(textoutput,"Warning: Unsupported display type (%ld)\n",DisplayType);
  51.     }
  52.  
  53.     return(0L);
  54. }
  55.  
  56.  
  57. /******************************************************************
  58.  *
  59.  *  CloseDisplay()
  60.  *
  61.  ******************************************************************/
  62.  
  63. void CloseDisplay(void)
  64. {
  65.  
  66. }
  67.  
  68.  
  69. /******************************************************************
  70.  *
  71.  *  DisplayPlot()
  72.  *
  73.  ******************************************************************/
  74.  
  75. void DisplayPlot(int x, int y, COLOR24 *RGBColor)
  76. {
  77.  
  78. }
  79.